projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
52bbc0f
)
ioemu: replace non-standard ulong with unsigned long
author
Keir Fraser
<keir.fraser@citrix.com>
Fri, 18 Jan 2008 13:35:26 +0000
(13:35 +0000)
committer
Keir Fraser
<keir.fraser@citrix.com>
Fri, 18 Jan 2008 13:35:26 +0000
(13:35 +0000)
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
tools/ioemu/target-i386-dm/helper2.c
patch
|
blob
|
history
diff --git
a/tools/ioemu/target-i386-dm/helper2.c
b/tools/ioemu/target-i386-dm/helper2.c
index 03dd7e85072ab8c1da3ebd575cdb77c943ce6a42..d9e517996410c2fdbfa9c17792267fcdcae91006 100644
(file)
--- a/
tools/ioemu/target-i386-dm/helper2.c
+++ b/
tools/ioemu/target-i386-dm/helper2.c
@@
-476,7
+476,7
@@
void cpu_ioreq_timeoffset(CPUState *env, ioreq_t *req)
{
char b[64];
- time_offset += (ulong)req->data;
+ time_offset += (u
nsigned
long)req->data;
fprintf(logfile, "Time offset set %ld, added offset %ld\n", time_offset, req->data);
sprintf(b, "%ld", time_offset);